home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-01-06 | 776 b | 37 lines |
- #;/************************************************************************
- #;*
- #;* File : MAKEFILE.
- #;*
- #;* Description : Makefile for VESA 2.00 Lib
- #;*
- #;* Copyright (C) 1994,97 Realtech
- #;*
- #;***********************************************************************/
-
-
- .EXTENSIONS:
- .EXTENSIONS: .exe .obj .asm .c .cpp
- .BEFORE
- @set INCLUDE=.;$(%watcom)\h;$(%watcom)\h\win;..\include;
- CC = wcc386 -Otexan -5 -WX -d0
- ASM = tasm /m5 /mx /zn /dCODE586 /d__C32__ /o /i\code\_asm
- LIB = wlib
- LINK = wlink
-
- .c.obj:
- $(CC) $?
-
- .cpp.obj:
- $(CC) $?
-
- .asm.obj:
- $(ASM) $?
-
- LIB_dependencies = wdpmi.obj &
- _vesa2.obj &
- dpmi.obj
-
-
- ..\lib\rtvbelib.lib: $(LIB_dependencies) rtvbelib.lnk
- $(LIB) -c -n -b $@ @rtvbelib.lnk
-